home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1997 April: Mac OS SDK / Dev.CD Apr 97 SDK1.toast / Development Kits (Disc 1) / Apple Shared Library Manager / ASLM Examples / Inspector / Sources / SimpleCommon.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-11-19  |  962 b   |  41 lines  |  [TEXT/MPS ]

  1. /*
  2.     File:        SinpleCommon.h
  3.  
  4.     Contains:    Things common to Inspector C++ and Rez source
  5.  
  6.     Copyright:    © 1991-1993 by Apple Computer, Inc., all rights reserved.
  7.  
  8. */
  9.  
  10. #ifndef __SIMPLECOMMON__
  11. #define __SIMPLECOMMON__
  12.  
  13. #define kInspectorMainErrStrings 257    /* error strings */
  14. #define kInspectorLibraryMissing 1        /* index into error strings */
  15. #define kInitLibraryManagerFailed 2        /* index into error strings */
  16. #define    rUserAlert    129                    /* user error alert */
  17. #define    rAboutAlert    128                    /* about alert */
  18.  
  19.  
  20. /* Resources for the SimpleProgram routines */
  21.  
  22. #define    rMenuBar    129                /* application's menu bar */
  23.  
  24. #define    mApple                    228        /* Apple menu */
  25. #define    iAbout                    1
  26.  
  27. #define    mFile                    229        /* File menu */
  28. #define    iLoadLibraryManager        1
  29. #define    iUnloadLibraryManager    2
  30. #define    iRealProgram            3
  31. #define    iQuit                    4
  32.  
  33. #define    mEdit                    230        /* Edit menu */
  34. #define    iUndo                    1
  35. #define    iCut                    3
  36. #define    iCopy                    4
  37. #define    iPaste                    5
  38. #define    iClear                    6
  39.  
  40. #endif
  41.